.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 5px;
  background-color: rgb(128, 21, 21);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 300px;
  transition: transform 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.1);
}

.clanok img {
  display: block;
  width: 100%;
  height: 250px;
}/*# sourceMappingURL=pics.css.map */